:root {
  --lux-espresso: #0D0B09;
  --lux-espresso-96: #0D0B09F4;
  --lux-ivory: #F3EFE7;
  --lux-gold: #CAA472;
  --lux-bronze: #B59268;
  --lux-saddle: #8B6E53;
  --lux-cafe: #A0805D;
  --lux-walnut: #765C48;

  --lux-line: rgba(139,110,83,0.35);
  --lux-gold-veil: rgba(202,164,114,0.18);

  --shadow-soft: 0 4px 6px rgba(13,11,9,0.25);
  --shadow-drawer: -2px 0 12px rgba(13,11,9,0.35);

  --radius: 8px;
  --speed: 180ms;

  --sp-1: 6px;
  --sp-2: 10px;
  --sp-3: 15px;
  --header-height: 56px;

  --header-bg: rgba(243,239,231,0.92);
  --header-border: rgba(139,110,83,0.25);

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  color: var(--lux-espresso);
  background: #F7F3EA;
  font-size: 15px;
  line-height: 1.4;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-sizing: border-box;
  backdrop-filter: saturate(120%) blur(2px);
  color: var(--lux-espresso);
}

.logo img { 
  max-height: 32px;
  display: block;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.navbar li { margin: 0; }
.navbar a {
  text-decoration: none;
  color: var(--lux-espresso);
  padding: 6px 8px;
  border-radius: var(--radius);
  transition: background-color var(--speed) ease, color var(--speed) ease;
}
.navbar a:hover,
.navbar a:focus-visible {
  background-color: rgba(202,164,114,0.14);
  color: var(--lux-espresso);
  outline: none;
}

.hamburger-menu {
  display: none;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--lux-espresso);
  transition: color var(--speed) ease, transform var(--speed) ease;
}
.hamburger-menu:hover,
.hamburger-menu:focus-visible { 
  color: var(--lux-gold); 
  transform: scale(1.02); 
}

/* Responsive nav dropdown */
@media (max-width: 900px) {
  .hamburger-menu { display: block; }
  .navbar {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    display: none;
    flex-direction: column;
    gap: 0;
    backdrop-filter: saturate(120%) blur(2px);
  }
  .navbar.show { display: flex; }
  .navbar li a { padding: 12px 16px; }
}

/* ---------- Theme toggle & language ---------- */
.theme-toggle{
  display:inline-flex; align-items:center; gap:8px;
  height:32px; padding:6px 10px;
  background: transparent;
  color: var(--lux-espresso);
  border: 1px solid var(--lux-bronze);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--speed) ease, color var(--speed) ease, box-shadow var(--speed) ease, transform var(--speed) ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible{
  background: rgba(202,164,114,0.12);
  color: var(--lux-espresso);
  outline: none;
  box-shadow: 0 0 0 3px rgba(202,164,114,0.25);
  transform: translateY(-1px);
}
.theme-toggle .sun{ display:none; }
.theme-toggle .moon{ display:inline-block; }

.language-select select {
  height: 32px;
  padding: 6px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--lux-line);
  background-color: #fff;
  color: var(--lux-espresso);
  cursor: pointer;
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}
.language-select select:hover,
.language-select select:focus-visible {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(202,164,114,0.25);
  outline: none;
}

/* ---------- Cart icon ---------- */
.cart-icon {
  position: relative;
  font-size: 18px;
  line-height: 1;
  color: var(--lux-espresso);
  transition: color var(--speed) ease, transform var(--speed) ease;
  cursor: pointer;
}
.cart-icon:hover,
.cart-icon:focus-visible { 
  color: var(--lux-gold); 
  transform: translateY(-1px); 
}
.cart-icon #cart-count {
  position: relative;
  top: -6px;
  margin-left: 4px;
  font-size: 12px;
  background: var(--lux-gold);
  color: var(--lux-espresso);
  border-radius: 999px;
  padding: 2px 6px;
  border: 1px solid var(--lux-bronze);
}

/* ---------- Cart drawer ---------- */
.cart-menu {
  position: fixed;
  top: var(--header-height);
  right: -460px;          /* hidden off-screen */
  width: 420px;           /* larger cart */
  height: calc(100vh - var(--header-height));
  background-color: #ffffff;
  color: var(--lux-espresso);
  box-shadow: var(--shadow-drawer);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
  border-left: 1px solid rgba(139,110,83,0.25);
}
.cart-menu.open { right: 0; }

/* Cart heading */
.cart-menu h2{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--lux-espresso);
  border-bottom: 1px solid var(--lux-line);
  padding-bottom: 10px;
}

#cart-items {
  margin-top: 20px;
  overflow-y: auto;
  max-height: 70%;
}

/* Grid layout: thumbnail left, info center, qty + delete right */
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(139,110,83,0.25);
  padding-bottom: 10px;
}

.item-thumb { width: 64px; height: 64px; overflow: hidden; border-radius: var(--radius); }
.cart-thumb {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item .item-info { min-width: 0; }
.cart-item .item-info .cart-item-name { font-weight: bold; }
.cart-item .item-info .cart-item-options {
  font-size: 0.85em;
  color: var(--lux-walnut);
  margin-top: 5px;
  white-space: pre-wrap;
}
.cart-item .item-info .cart-item-price {
  font-size: 0.95em;
  margin-top: 5px;
  color: var(--lux-cafe);
}

.cart-item .item-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cart-item .item-quantity input {
  width: 56px;
  text-align: center;
  padding: 6px;
  border: 1px solid var(--lux-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--lux-espresso);
}

.cart-item .item-delete {
  cursor: pointer;
  font-size: 20px;
  color: var(--lux-walnut);
  transition: color var(--speed) ease, transform var(--speed) ease;
  justify-self: end;
}
.cart-item .item-delete:hover { 
  color: var(--lux-gold); 
  transform: scale(1.05); 
}

.cart-total {
  margin-top: 20px;
  font-size: 18px;
  text-align: right;
  color: var(--lux-espresso);
  border-top: 1px solid var(--lux-line);
  padding-top: 10px;
}
#checkout-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background-color: var(--lux-gold);
  color: var(--lux-espresso);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--speed) ease, transform var(--speed) ease, box-shadow var(--speed) ease;
}
#checkout-button:hover,
#checkout-button:focus-visible {
  background-color: var(--lux-bronze);
  box-shadow: 0 6px 14px rgba(202,164,114,0.35);
  outline: none;
}

/* ---------- Overlay ---------- */
.overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.active { opacity: 1; visibility: visible; }

.content-container {
        padding-top: var(--header-height);
        min-height: calc(100vh - var(--header-height));
    }

/* ---------- Footer ---------- */
footer {
  background: var(--header-bg);
  color: var(--lux-espresso);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--header-border);
  backdrop-filter: saturate(120%) blur(2px);
}

.footer-sections {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8vw;
  text-align: center;
  margin: 2vh 0;
}
@media (max-width: 900px) {
  .footer-sections { gap: 2vw; }
}

.footer-column { 
  min-width: 200px;
  padding: 10px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: var(--lux-gold);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--lux-espresso);
  text-decoration: none;
  transition: color var(--speed) ease, text-shadow var(--speed) ease;
  padding: 4px 8px;
  border-radius: var(--radius);
}
.footer-links a:hover,
.footer-links a:focus-visible {
  background-color: rgba(202,164,114,0.14);
  color: var(--lux-espresso);
  outline: none;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-button {
  width: 40px;
  height: 40px;
  background-color: rgba(202,164,114,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--speed) ease, transform var(--speed) ease, box-shadow var(--speed) ease;
  text-decoration: none;
  border: 1px solid var(--lux-line);
}
.social-button:hover,
.social-button:focus-visible {
  background-color: rgba(202,164,114,0.25);
  transform: scale(1.06);
  box-shadow: 0 6px 14px rgba(13,11,9,0.25);
  outline: none;
}
.social-button img { 
  width: 20px; 
  height: 20px; 
  filter: brightness(0.8);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--header-border);
  font-size: 14px;
  color: var(--lux-walnut);
}

.main-content {
  padding-top: var(--header-height);
  min-height: 100vh;
  transition: filter 0.3s ease;
}
.main-content.blurred { filter: blur(5px); }

/* ---------- Dark mode (color-only) ---------- */
html.theme-dark { color-scheme: dark; }

html.theme-dark body{
  background: var(--lux-espresso);
  color: var(--lux-ivory);
}

html.theme-dark{
  --header-bg: var(--lux-espresso-96);
  --header-border: var(--lux-line);
}

html.theme-dark .site-header{ color: var(--lux-ivory); }

html.theme-dark .navbar a{
  color: var(--lux-ivory);
}
html.theme-dark .navbar a:hover,
html.theme-dark .navbar a:focus-visible{
  background-color: var(--lux-gold-veil);
  color: var(--lux-gold);
}

html.theme-dark .hamburger-menu{ color: var(--lux-ivory); }

html.theme-dark .language-select select{
  background-color: #111;
  color: #fff;
  border-color: #333;
}

html.theme-dark .cart-icon{ color: var(--lux-ivory); }

html.theme-dark .cart-menu{
  background-color: var(--lux-espresso-96);
  color: var(--lux-ivory);
  border-left-color: var(--lux-line);
}
html.theme-dark .cart-menu h2 { 
  color: var(--lux-gold);
  border-bottom-color: var(--lux-line);
}
html.theme-dark .cart-item { border-bottom-color: rgba(243,239,231,0.12); }
html.theme-dark .cart-item .item-info .cart-item-options { color: var(--lux-ivory); opacity: 0.8; }
html.theme-dark .cart-item .item-info .cart-item-price { color: var(--lux-gold); }

html.theme-dark .cart-item .item-quantity input{
  background: rgba(243,239,231,0.06);
  color: var(--lux-ivory);
  border-color: var(--lux-line);
}

html.theme-dark .cart-item .item-delete { color: var(--lux-ivory); }
html.theme-dark .cart-item .item-delete:hover { color: var(--lux-gold); }

html.theme-dark .cart-total {
  color: var(--lux-ivory);
}
html.theme-dark .cart-total strong,
html.theme-dark .cart-total #cart-total {
  color: var(--lux-gold);
}

html.theme-dark .overlay{
  background-color: rgba(13, 11, 9, 0.7);
}

html.theme-dark .theme-toggle{
  color: var(--lux-ivory);
  border-color: var(--lux-gold);
}
html.theme-dark .theme-toggle:hover,
html.theme-dark .theme-toggle:focus-visible{
  background: var(--lux-gold-veil);
  color: var(--lux-gold);
}
html.theme-dark .theme-toggle .sun{ display:inline-block; }
html.theme-dark .theme-toggle .moon{ display:none; }

/* Footer dark mode styles */
html.theme-dark footer {
  background: var(--header-bg);
  color: var(--lux-ivory);
  border-top-color: var(--header-border);
}

html.theme-dark .footer-column h3 {
  color: var(--lux-gold);
}

html.theme-dark .footer-links a {
  color: var(--lux-ivory);
}

html.theme-dark .footer-links a:hover,
html.theme-dark .footer-links a:focus-visible {
  background-color: var(--lux-gold-veil);
  color: var(--lux-gold);
}

html.theme-dark .social-button {
  background-color: var(--lux-gold-veil);
  border-color: var(--lux-line);
}

html.theme-dark .social-button:hover,
html.theme-dark .social-button:focus-visible {
  background-color: rgba(202,164,114,0.25);
}

html.theme-dark .social-button img {
  filter: brightness(1.2);
}

html.theme-dark .footer-bottom {
  border-top-color: var(--header-border);
  color: var(--lux-ivory);
  opacity: 0.8;
}


/* =================== Checkout Page Styles (scoped) =================== */
.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.checkout-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  color: var(--lux-espresso);
}

/* Cart list */
.checkout-container .cart-items { margin-bottom: 30px; }

/* Scope .cart-item to avoid conflict with cart drawer styles */
.checkout-container .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--lux-line);
}

.checkout-container .cart-item .item-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.checkout-container .cart-item .item-info { flex: 2; min-width: 0; }
.checkout-container .cart-item .item-info h3 { margin: 0; font-size: 20px; color: var(--lux-espresso); }
.checkout-container .cart-item .item-info .options { margin-top: 5px; color: var(--lux-walnut); }

.checkout-container .cart-item .item-price { flex: 1; text-align: right; color: var(--lux-cafe); }

.checkout-container .cart-item .item-quantity {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-container .cart-item .quantity-btn {
  padding: 5px 10px;
  background-color: rgba(202,164,114,0.14);
  border: 1px solid var(--lux-line);
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background var(--speed) ease, transform var(--speed) ease, box-shadow var(--speed) ease;
}
.checkout-container .cart-item .quantity-btn:hover,
.checkout-container .cart-item .quantity-btn:focus-visible{
  background-color: rgba(202,164,114,0.25);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(13,11,9,0.18);
}

.checkout-container .cart-item input {
  width: 56px;
  padding: 6px;
  text-align: center;
  border: 1px solid var(--lux-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--lux-espresso);
}

.checkout-container .cart-item .delete-btn {
  color: #c0392b;
  cursor: pointer;
  margin-left: 10px;
  transition: transform var(--speed) ease, color var(--speed) ease;
}
.checkout-container .cart-item .delete-btn:hover { 
  transform: scale(1.05);
  color: var(--lux-gold);
}

/* Total line (more specific so we don't clash with drawer .cart-total) */
.checkout-container #cart-total {
  border-top: none;
  padding-top: 0;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--lux-espresso);
}

/* Payment section */
.checkout-container .payment-section,
.checkout-container .client-info-section {
  background-color: rgba(243,239,231,0.6);
/* avoid double gap */

  padding: 20px;
  border: 1px solid var(--lux-line);
  border-radius: var(--radius);
}

.checkout-container hr {
  border: 0;
  height: 1px;
  background: var(--lux-line);
  margin: 20px 0;
}

/* Spacing between sections */
.checkout-container .client-info-section { margin-bottom: 28px; }
.checkout-container .client-info-section + .payment-section { margin-top: 0; }


.checkout-container h2 {
  font-size: 24px;
  color: var(--lux-espresso);
  margin-bottom: 20px;
}

.checkout-container .client-info-section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--lux-espresso);
}

.checkout-container .client-info-section input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--lux-line);
  border-radius: var(--radius);
  box-sizing: border-box;
  background: #fff;
  color: var(--lux-espresso);
}

/* Stripe elements */
.checkout-container .stripe-card-element {
  background: #fff;
  padding: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--lux-line);
  margin-bottom: 20px;
}

.checkout-container .stripe-errors { color: #dc3545; margin-top: 10px; font-size: 14px; }

/* Submit */
.checkout-container .checkout-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--lux-espresso);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  transition: background var(--speed) ease, box-shadow var(--speed) ease, transform var(--speed) ease;
}
.checkout-container .checkout-button:hover,
.checkout-container .checkout-button:focus-visible {
  background-color: var(--lux-saddle);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(13,11,9,0.25);
}

/* Spinner */
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--lux-espresso);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Image modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(100, 100, 100, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-content { position: relative; max-width: 90vw; max-height: 90vh; width: 100%; height: 80vh; }
.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
}
#media-container { width: 100%; height: 80vh; }
model-viewer { aspect-ratio: 1/1; height: 100%; width: 100%; background-color: #343541; }

/* Footer inner helpers */
.footer-content {
  text-align: center;
  width: 100%;
  padding: 20px;
}
.back-to-top {
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  color: var(--lux-espresso);
  transition: color var(--speed) ease, background var(--speed) ease, text-shadow var(--speed) ease;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--lux-espresso);
  outline: none;
}
.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  color: var(--lux-walnut);
}

/* ------------------- Dark Theme overrides ------------------- */
html.theme-dark .checkout-container h1,
html.theme-dark .checkout-container h2,
html.theme-dark .client-info-section label { color: var(--lux-ivory); }

html.theme-dark .checkout-container .cart-item {
  background-color: var(--lux-espresso-96);
  border-color: var(--lux-line);
}
html.theme-dark .checkout-container .cart-item .item-info h3 { color: var(--lux-ivory); }
html.theme-dark .checkout-container .cart-item .item-info .options { color: var(--lux-ivory); opacity: 0.85; }
html.theme-dark .checkout-container .cart-item .item-price { color: var(--lux-gold); }
html.theme-dark .checkout-container .cart-item input {
  background: rgba(243,239,231,0.06);
  color: var(--lux-ivory);
  border-color: var(--lux-line);
}
html.theme-dark .checkout-container .cart-item .quantity-btn {
  background-color: var(--lux-gold-veil);
  border-color: var(--lux-line);
}
html.theme-dark .checkout-container .cart-item .quantity-btn:hover,
html.theme-dark .checkout-container .cart-item .quantity-btn:focus-visible {
  background-color: rgba(202,164,114,0.25);
}

html.theme-dark .checkout-container #cart-total {
  border-top: none;
  padding-top: 0; color: var(--lux-ivory); }
html.theme-dark .checkout-container .payment-section,
html.theme-dark .checkout-container .client-info-section {
  background-color: rgba(243,239,231,0.06);
  border-color: var(--lux-line);
}
html.theme-dark .checkout-container .client-info-section input,
html.theme-dark .checkout-container .stripe-card-element {
  background-color: rgba(243,239,231,0.06);
  color: var(--lux-ivory);
  border-color: var(--lux-line);
}
html.theme-dark .checkout-container .checkout-button {
  background-color: var(--lux-gold);
  color: var(--lux-espresso);
}
html.theme-dark .checkout-container .checkout-button:hover,
html.theme-dark .checkout-container .checkout-button:focus-visible {
  background-color: var(--lux-bronze);
}

html.theme-dark .spinner {
  border-color: rgba(243,239,231,0.18);
  border-top-color: var(--lux-gold);
}

html.theme-dark .image-modal { background-color: rgba(13,11,9,0.7); }
html.theme-dark .close-btn { color: var(--lux-ivory); }
html.theme-dark model-viewer { background-color: #0F1115; }

/* Back-to-top theming */
html.theme-dark .back-to-top {
  color: var(--lux-gold);
}
html.theme-dark .back-to-top:hover,
html.theme-dark .back-to-top:focus-visible {
  color: var(--lux-gold);
}

/* Make sure footer copy remains readable in dark mode */
html.theme-dark .footer-copy { color: var(--lux-ivory); opacity: 0.8; }


/* Stripe Element interactive states */
.stripe-card-element {
  position: relative;
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease;
}
.stripe-card-element.is-focused {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(202,164,114,0.30);
}
.stripe-card-element.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,0.20);
}
.stripe-card-element.is-complete {
  border-color: var(--lux-espresso);
}

html.theme-dark .stripe-card-element.is-focused {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(202,164,114,0.28);
}
html.theme-dark .stripe-card-element.is-invalid {
  border-color: #f27a7a;
  box-shadow: 0 0 0 3px rgba(242,122,122,0.20);
}
html.theme-dark .stripe-card-element.is-complete {
  border-color: var(--lux-gold);
}


/* Dark mode: make monochrome footer social SVGs appear white */
html.theme-dark footer .social-button img {
  filter: invert(1) brightness(1.05) contrast(1.05);
}
